home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol05 / 06 / worddll / novanew < prev    next >
Text File  |  1990-11-01  |  472b  |  19 lines

  1. cx=cl -PLM -c -AM -Aw -Zipe -Gcsw -Os -FPc -W3  -u  -NT
  2. am=masm -Id:\tools\include -Mx -D?MLIBW $*;
  3.  
  4. all: novanew.dll
  5.  
  6. libentry.obj: libentry.asm
  7.    masm -Mx libentry,libentry;
  8.  
  9. novanew.obj: novanew.c  novanew.h
  10.     $(cx) _ROOTRTN $*.c >$*.err
  11.     type $*.err
  12.  
  13. novanew.dll: novanew.obj novanew.def libentry.obj novanew.rc
  14.    link /CO @novanew.lnk
  15.    rc novanew.rc novanew.dll > novatrc1.err
  16.    type novatrc1.err
  17.    copy novanew.dll e:\win30\system\*.*
  18.  
  19.